home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / Pdmod / modules / mui / speedbarcfg_mcc.m < prev    next >
Encoding:
Text File  |  2002-10-28  |  1.4 KB  |  44 lines

  1. /*********************************************************
  2. **                                                      **
  3. **      SpeedBarCfg.mcc                                 **
  4. **                                                      **
  5. **              ©1999 Simone Tellini                    **
  6. **                                                      **
  7. *********************************************************/
  8. MODULE  'libraries/mui'
  9.  
  10. #define MUIC_SpeedBarCfg     'SpeedBarCfg.mcc'
  11. #define SpeedBarCfgObject    MUI_NewObject( MUIC_SpeedBarCfg
  12. #define SBCTAGBASE           $F76B00A0
  13.  
  14. /*************************
  15. **      Methods         **
  16. *************************/
  17.  
  18. #define MUIM_SpeedBarCfg_GetCfg          (SBCTAGBASE + 1)       /*  PRIVATE  */
  19. #define MUIM_SpeedBarCfg_SetCfg          (SBCTAGBASE + 2)       /*  PRIVATE  */
  20.  
  21. /*************************
  22. **      Attributes      **
  23. *************************/
  24.  
  25. #define MUIA_SpeedBarCfg_Config          (SBCTAGBASE + 1)       /*  MUIS_SpeedBarCfg_Config *   ISG  */
  26.  
  27. /*************************
  28. **      Values          **
  29. *************************/
  30.  
  31. #define MUIV_SpeedBarCfg_Borderless      (1 << 0)
  32. #define MUIV_SpeedBarCfg_Raising         (1 << 1)
  33. #define MUIV_SpeedBarCfg_SmallButtons    (1 << 2)
  34. #define MUIV_SpeedBarCfg_Sunny           (1 << 3)
  35.  
  36. /*************************
  37. **      Structures      **
  38. *************************/
  39.  
  40. OBJECT MUIS_SpeedBarCfg_Config
  41.         ViewMode:UWORD,
  42.         Flags:ULONG
  43.  
  44.